home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -in_the_mag- / reader_requests / scilab / tests / logops.dia.ref < prev    next >
Text File  |  1999-09-16  |  3KB  |  187 lines

  1.  
  2. //simple ops
  3.  
  4. if 1==0 then bugmes();quit;end
  5.  
  6. if 1<0 then bugmes();quit;end
  7.  
  8. if 1<=0 then bugmes();quit;end
  9.  
  10. if 1==1 then,else bugmes();quit;end
  11.  
  12. if ~(1==1) then bugmes();quit;end
  13.  
  14. if 0>1 then bugmes();quit;end
  15.  
  16. if 0>=1 then bugmes();quit;end
  17.  
  18. if 1<>1 then bugmes();quit;end
  19.  
  20. if 0<>1 then,else bugmes();quit;end
  21.  
  22. if '1'=='0' then bugmes();quit;end
  23.  
  24. if '1'<>'1' then bugmes();quit;end
  25.  
  26.  
  27. %s=poly(0,'s');
  28.  
  29. if %s==0 then bugmes();quit;end
  30.  
  31. if 0==%s then bugmes();quit;end
  32.  
  33. if %s==%s then,else bugmes();quit;end
  34.  
  35. if %s<>%s then bugmes();quit;end
  36.  
  37. if %s==%s+1 then bugmes();quit;end
  38.  
  39. if %s+1==%s then bugmes();quit;end
  40.  
  41.  
  42. if 1/%s==0 then bugmes();quit;end
  43.  
  44. if 0==1/%s then bugmes();quit;end
  45.  
  46. if 1/%s==1/%s then,else bugmes();quit;end
  47.  
  48. if 1/%s<>1/%s then bugmes();quit;end
  49.  
  50. if 1/%s==1/%s+1 then bugmes();quit;end
  51.  
  52. if 1/%s+1==1/%s then bugmes();quit;end
  53.  
  54. if 1/%s<>1/%s+1 then , else  bugmes();quit;end
  55.  
  56. if 1/%s+1<>1/%s then , else  bugmes();quit;end
  57.  
  58.  
  59. l=list(1,[1 23],'adssa')
  60.  l  =
  61.  
  62.  
  63.        l>1
  64.  
  65.     1.  
  66.  
  67.        l>2
  68.  
  69. !   1.    23. !
  70.  
  71.        l>3
  72.  
  73.  adssa   
  74.  
  75. l1=list(123,'sdwqqwq')
  76.  l1  =
  77.  
  78.  
  79.        l1>1
  80.  
  81.     123.  
  82.  
  83.        l1>2
  84.  
  85.  sdwqqwq   
  86.  
  87. if l==0 then bugmes();quit;end
  88.  
  89. if 0==l then bugmes();quit;end
  90.  
  91. if l==l then,else bugmes();quit;end
  92.  
  93. if l<>l then bugmes();quit;end
  94.  
  95. if l==l1 then bugmes();quit;end
  96.  
  97. if l1==l then bugmes();quit;end
  98.  
  99. if l<>l1 then , else bugmes();quit;end
  100.  
  101. if l1<>l then , else bugmes();quit;end
  102.  
  103.  
  104.  
  105. if %t&1==2 then bugmes();quit;end
  106.  
  107. if %t|1==2 then, else bugmes();quit;end
  108.  
  109. if %t&-1==2 then bugmes();quit;end
  110.  
  111. if %t|-1==2 then, else bugmes();quit;end
  112.  
  113. if 1<2&1==2 then bugmes();quit;end
  114.  
  115. if 1<2|1==2 then, else bugmes();quit;end
  116.  
  117. if 1<2&-1==2 then bugmes();quit;end
  118.  
  119. if 1<2|-1==2 then, else bugmes();quit;end
  120.  
  121. if 2>1&1==2 then bugmes();quit;end
  122.  
  123. if 2>1|1==2 then, else bugmes();quit;end
  124.  
  125. if 2>1&-1==2 then bugmes();quit;end
  126.  
  127. if 2>1|-1==2 then, else bugmes();quit;end
  128.  
  129. if 1==1&1==2 then bugmes();quit;end
  130.  
  131. if 1==1|1==2 then, else bugmes();quit;end
  132.  
  133. if 1==1&-1==2 then bugmes();quit;end
  134.  
  135. if 1==1|-1==2 then, else bugmes();quit;end
  136.  
  137. if 1<>2&1==2 then bugmes();quit;end
  138.  
  139. if 1<>2|1==2 then, else bugmes();quit;end
  140.  
  141. if 1<>2&-1==2 then bugmes();quit;end
  142.  
  143. if 1<>2|-1==2 then, else bugmes();quit;end
  144.  
  145.  
  146. if %t&1>2 then bugmes();quit;end
  147.  
  148. if %t|1>2 then, else bugmes();quit;end
  149.  
  150. if %t&-1>2 then bugmes();quit;end
  151.  
  152. if %t|-1>2 then, else bugmes();quit;end
  153.  
  154. if 1<2&1>2 then bugmes();quit;end
  155.  
  156. if 1<2|1>2 then, else bugmes();quit;end
  157.  
  158. if 1<2&-1>2 then bugmes();quit;end
  159.  
  160. if 1<2|-1>2 then, else bugmes();quit;end
  161.  
  162. if 2>1&1>2 then bugmes();quit;end
  163.  
  164. if 2>1|1>2 then, else bugmes();quit;end
  165.  
  166. if 2>1&-1>2 then bugmes();quit;end
  167.  
  168. if 2>1|-1>2 then, else bugmes();quit;end
  169.  
  170. if 1==1&1>2 then bugmes();quit;end
  171.  
  172. if 1==1|1>2 then, else bugmes();quit;end
  173.  
  174. if 1==1&-1>2 then bugmes();quit;end
  175.  
  176. if 1==1|-1>2 then, else bugmes();quit;end
  177.  
  178. if 1<>2&1>2 then bugmes();quit;end
  179.  
  180. if 1<>2|1>2 then, else bugmes();quit;end
  181.  
  182. if 1<>2&-1>2 then bugmes();quit;end
  183.  
  184. if 1<>2|-1>2 then, else bugmes();quit;end
  185.  
  186.  
  187.